From: Руслан Ижбулатов Date: Tue, 15 Aug 2017 13:12:43 +0000 (+0000) Subject: GDK W32: Fix a typo in OLE2 DnD code X-Git-Tag: archive/raspbian/3.24.39-1+rpi1~1^2~65^2~38^2~163 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success/%22http:/www.example.com/cgi/success?a=commitdiff_plain;h=022cf4252f290a19fcef8b4cbc76d4fedff409c3;p=gtk%2B3.0.git GDK W32: Fix a typo in OLE2 DnD code https://bugzilla.gnome.org/show_bug.cgi?id=786509 --- diff --git a/gdk/win32/gdkdnd-win32.c b/gdk/win32/gdkdnd-win32.c index e2cd1ba75e..fef897ee30 100644 --- a/gdk/win32/gdkdnd-win32.c +++ b/gdk/win32/gdkdnd-win32.c @@ -423,7 +423,7 @@ dnd_event_put (GdkEventType type, e->dnd.context = g_object_ref (context); e->dnd.time = GDK_CURRENT_TIME; e->dnd.x_root = pt.x + _gdk_offset_x; - e->dnd.y_root = pt.x + _gdk_offset_y; + e->dnd.y_root = pt.y + _gdk_offset_y; if (e->dnd.window != NULL) g_object_ref (e->dnd.window);